home *** CD-ROM | disk | FTP | other *** search
/ Cracking 2 / Cracking II..iso / Kompresni & kodovaci programy / ucl-0.91 / B / win32 / bc55.bat next >
DOS Batch File  |  2000-04-05  |  678b  |  30 lines

  1. rem /* Windows 32 bit (LIB) - Borland C++ 5.5
  2. rem  * a very simple make driver
  3. rem  * Copyright (C) 1996-2000 Markus F.X.J. Oberhumer
  4. rem  */
  5.  
  6. @if "%UCL_ECHO%"=="n" echo off
  7.  
  8. set CC=bcc32
  9. set CFLAGS=-Iinclude -O2 -w -w-par
  10. set MYLIB=ucl.lib
  11.  
  12. echo Compiling, please be patient...
  13. %CC% %CFLAGS% -Isrc -c src\*.c
  14. @if errorlevel 1 goto error
  15. if exist %MYLIB% del %MYLIB%
  16. tlib %MYLIB% @b\win32\bc55.rsp
  17. @if errorlevel 1 goto error
  18.  
  19. %CC% %CFLAGS% -Iexamples examples\simple.c %MYLIB%
  20. @if errorlevel 1 goto error
  21. %CC% %CFLAGS% -Iexamples examples\uclpack.c %MYLIB%
  22. @if errorlevel 1 goto error
  23.  
  24. echo Done.
  25. goto end
  26. :error
  27. echo error!
  28. :end
  29. @call b\unset.bat
  30.